<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
  font-family: 'DINPro-Light';
  src: url("../font/DINPro-Light.otf");
}
@font-face {
  font-family: 'DINPro-Regular';
  src: url("../font/DINPro-Regular_0.otf");
}
@font-face {
  font-family: 'DINPro-Medium';
  src: url("../font/DINPro-Medium.otf");
}
@keyframes o-upfade-top {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes o-scale {
  0%,85%,100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@keyframes o-opacity {
  0%,30%,60%,100% {
    opacity: 0;
  }
  15%,45% {
    opacity: 1;
  }
}
@keyframes o-scroll {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes p-ani-2 {
  from, to {
    opacity: 1;
    transform: none;
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 12px, 0);
  }
}
@keyframes p-ani-3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes o-width {
  0% {
    width: 0;
    left: 0;
    right: auto;
  }
  60% {
    width: 100%;
    left: 0;
    right: auto;
  }
  61% {
    width: 100%;
    left: auto;
    right: 0;
  }
  100% {
    width: 0%;
    left: auto;
    right: 0;
  }
}
@keyframes p-ani-4 {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  70%,100% {
    opacity: 0;
    transform: translateX(1vw);
  }
}
@keyframes p-ani-5 {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@media screen and (min-width: 1200px) {
  .wow {
    visibility: hidden;
  }

  .dom-loaded .header .nav li .subnav {
    transition: all .3s ease;
  }
  .dom-loaded .header .ope .hide {
    transition: all .3s ease;
  }
  .dom-loaded .fixed-search .bg {
    transition: all .3s ease;
  }
  .dom-loaded .fixed-search form {
    transition: transform .3s ease;
  }
}

.header .nav li.pchide{
  display: none;
}
.wrapper {
  width: 80vw;
  max-width: 1420px;
  margin: 0 auto;
  position: relative;
}
.wrapper:after {
  content: '';
  display: block;
  clear: both;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  border-bottom: rgba(255,255,255,0.8);
  /*box-shadow: 0 0 5px rgb(255 255 255 / 10%);*/
}
.header.down{
  background-color: #fff;
  /*box-shadow: 0 0 5px rgb(0 0 0 / 10%);*/
}
.header .logo {
  position: absolute;
  left: 3.125vw;
  top: 50%;
  margin-top: -20px;
}
.header .logo a {
  display: block;
}
.header .logo .img-box {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.header .logo img {
  display: block;
  height: 40px;
  transition: all .3s ease;
}
.header .logo img.hide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.header .logo .txt-box {
  display: inline-block;
  vertical-align: middle;
}
.header .logo .txt-box:before {
  content: '';
  width: 1px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: -2px 20px 0;
  display: inline-block;
  vertical-align: middle;
  transition: all .3s ease;
}
.header .logo .txt-box .txt {
  display: inline-block;
  vertical-align: middle;
}
.header .logo .txt-box h3 {
  font-size: 18px;
  color: #fff;
  letter-spacing: 8px;
  transition: all .3s ease;
}
.header .logo .txt-box span {
  display: block;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 5px;
  transition: all .3s ease;
}
.header .nav {
  text-align: right;
  padding:0 50px 0 400px;
  font-size: 0;
  clear: both;
}
.header .nav li {
  display: inline-block;
  vertical-align: top;
  /* padding: 0 2vw; */
  position: relative;
  width: 8.5vw;
  float: left;
  text-align: center;
}
.header .nav li.submenu:hover{
  background: #F0F6FC;
}
.header .nav li a.single, .header .nav li.lang a {
  /*display: block;*/
  font-size: 16px;
  line-height: 100px;
  transition: all .3s ease;
}
.header .nav li a.single {
  color: #fff;
  position: relative;
}
.header .nav li a.single:after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  background-color: #fff;
  height: 2px;
  transform: scaleX(0);
  transition: all .3s ease;
}
.header .nav li.lang a {
  color: #fff;
  font-family: 'DINPro-Medium';
  background: url("../images/lang.png") left center no-repeat;
  padding-left:25px;
}
.header .nav li.lang a img{
  margin-right: 10px;
}

.header.hover .nav li.active a.single:after{
  background-color: #00457d;
}
.second-nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  font-size: 0;
  color: #333;
  z-index: 100;
  padding: 0 0px;
  box-sizing: border-box;
}
.header .nav li.submenu:hover .second-nav{
  background: #F0F6FC;
}
.header .nav li .second-nav li {
  padding:0;
}
.second-nav a {
  clear: both;
  display: block;
  font-size: 14px;
  width: 100%;
  /*padding-left:2.5vw;*/
  text-align: center;
  color: #333;
  height:44px;
  line-height:44px;
}
.second-nav a:hover{
  background: #0069B8;
  color: #fff;
}
.second-nav a:first-of-type {
  margin-top: 0;
}
.second-nav a:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
.second-nav.second-active {
  /*background: #F2F3F6;*/
}
.hover-bg {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 10;
  overflow: hidden;
  background: url("../images/hovernavbg.png") #fff left bottom no-repeat;
  padding: 0 0px;
  box-sizing: border-box;
}
.down .hover-bg{
  top:70px;
}
@media screen and (min-width: 1200px) {
  .header .nav li:hover a.single {
    color: #00457d;
  }
  .header .nav li.active a.single {
    color: #fff;
  }
  .header .nav li.active a.single:after {
    transform: scaleX(1);
  }

}
.header .search {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/icon-2.png");
  transition: all .3s ease;
}
.header.down .nav li a.single, .header.down .nav li.lang a,.header.hover .nav li a.single, .header.hover .nav li.lang a {
  line-height: 70px;
}
.header.down .search,.header.hover .search{
  width: 70px;
  height: 70px;
}
.header.hover {
  background-color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.15);
}
.header.hover .logo img.show {
  opacity: 0;
}
.header.hover .logo img.hide {
  opacity: 1;
}
.header.hover .logo .txt-box:before {
  background-color: #d6d6d6;
}
.header.hover .logo .txt-box h3, .header.hover .logo .txt-box span {
  color: #333;
}
.header.hover .nav li a.single {
  color: #000;
}
.header.hover .nav li a.single:after {
  background-color: #00457d;
}
.header.hover .nav li.lang a {
  color: #555555;
  background-image: url("../images/langhover.png");
}
.header.hover .nav li.lang a:before {
  background-image: url("../images/icon-3-2.png");
}
@media screen and (min-width: 1200px) {
  .header.hover .nav li:hover a.single {
    color: #00457d;
  }
  .header.hover .nav li.active a.single {
    color: #00457d;
  }
}
.header.hover .search {
  background-color: #00457d;
}

/* search */
.fixed-search .bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 6;
  opacity: 0;
  visibility: hidden;
}
.fixed-search form {
  position: fixed;
  left: 19vw;
  right: 19vw;
  background: #fff;
  z-index: 7;
  padding: 0 70px;
  opacity: 0;
  top: 120px;
  visibility: hidden;
}
.fixed-search form input {
  display: block;
  width: 100%;
  height: 70px;
  padding: 0 10px;
  font-size: 14px;
  color: #333;
}
.fixed-search form button {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/icon-1.svg");
  background-size: auto 20px;
  cursor: pointer;
  background-color: transparent;
}
.fixed-search form .close {
  position: absolute;
  width: 70px;
  height: 70px;
  right: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.fixed-search form .close svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
}
.fixed-search.active .bg, .fixed-search.active form {
  opacity: 1;
  visibility: visible;
}

/* footer */
.footer {
  font-size: 0;
  background-color: #2D2D34;
}
.footer .top-block {
  padding: 7.5vw 0;
  display: flex;
  justify-content: space-between;
}
.footer .logo img {
  display: block;
  height: 48px;
}
.footer .share-box {
  margin-top: 20px;
  font-size: 0;
  text-align: left;
}
.footer .share-box a {
  float: none;
  display: inline-block;
  vertical-align: top;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin: 0 20px 0 0;
  padding: 0;
}
.footer .share-box a[data-cmd="weixin"] {
  background-image: url("../images/share-1.png");
}
.footer .share-box a[data-cmd="tsina"] {
  background-image: url("../images/share-2.png");
}
.footer .share-box a[data-cmd="sqq"] {
  background-image: url("../images/share-3.png");
}
.footer .nav-box h3 a{
  font-size: 18px;
  color: #fff;
}
.footer .nav-box h3:after {
  content: '';
  width: 28px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin: 20px 0;
}
.footer .nav-box .link {
  font-size: 0;
}
.footer .nav-box .link a {
  display: block;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  margin-top: 15px;
  opacity: .4;
  transition: opacity .3s ease;
}
.footer .nav-box .link a:nth-of-type(1) {
  margin-top: 0;
}
@media screen and (min-width: 1200px) {
  .footer .nav-box .link a:hover {
    opacity: 1;
  }
}
.footer .ewm-box {
  max-width: 150px;
  text-align: center;
}
.footer .ewm-box img {
  display: block;
  width: 100%;
}
.footer .ewm-box p {
  font-size: 14px;
  line-height: 18px;
  color: #8f8f8f;
  margin-top: 20px;
}
.footer .bot-block {
  position: relative;
  padding: 3vw 0;
  border-top: 1px solid #32373c;
}
.footer .bot-block .link-ship{
  position: absolute;
  right: 0;
  width: 250px;
  height:100%;
  top:35px;
}
.footer .bot-block .link {
  position: absolute;
  right: 0;
}
.footer .bot-block .link a {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  color: #fff;
  margin-left: 2vw;
  opacity: .5;
  transition: opacity .3s ease;
}
.footer .bot-block .link a:nth-of-type(1) {
  margin-left: 0;
}
@media screen and (min-width: 1200px) {
  .footer .bot-block .link a:hover {
    opacity: 1;
  }
}
.footer .copyright {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  opacity: .5;
  line-height: 2;
}
.footer .copyright a {
  color: #fff;
}
.footer .ship {
  position: absolute;
  right: 0px;
  top: 30px;
  width: 250px;
  height: 36px;
  cursor: pointer;
}
.footer .ship:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 6px solid #fff;
  right: 20px;
  top: 50%;
  margin-top: -3px;
}
.footer .ship input {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 20px;
  font-size: 14px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
}
.footer .ship ul {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  background-color: #fff;
  z-index: 1;
  text-align: left;
  display: none;
  max-height: 300px;
  overflow: auto;
}
.footer .ship ul li {
  position: relative;
}
.footer .ship ul li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #00457d;
  z-index: 1;
  opacity: 0;
  transition: all .3s ease;
}
.footer .ship ul li a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #333;
  line-height: 36px;
  padding: 0 20px;
  transition: all .3s ease;
  z-index: 2;
}
.footer .ship ul li:hover:before {
  opacity: 1;
}
.footer .ship ul li:hover a {
  color: #fff;
}
.footer .ship.open ul {
  display: block;
}

/* media */

@media screen and (max-width: 1600px) {
  .header .nav {
    /*padding-left: 300px;*/
  }

  .header .nav li {
    /*padding-right: 50px;*/
  }

  .header .nav li a.single,
  .header .nav li.lang a {
    line-height: 70px;
  }

  .header .logo .txt-box h3 {
    font-size: 16px;
    letter-spacing: 5px;
  }

  .header .logo .txt-box:before {
    margin: 0 10px;
  }

  .header .search {
    width: 70px;
    height: 70px;
  }
  .hover-bg{
    top:70px;
  }
}
@media screen and (max-width: 1500px){
  .header .nav li{
    /*padding:0 1.5vw;*/
    /*width: 9vw;*/
  }
}
@media screen and (max-width: 1400px){
  .header .nav li{
    /*padding:0 1.5vw;*/
    width: 8vw;
  }
  .header .nav li.lang a img{
    margin-right: 5px;
  }
}
@media screen and (max-width: 1220px){
  .header .nav{
    padding: 0 50px 0 350px;
  }
}
  @media screen and (max-width: 1366px) {
  .header .nav li {
    /*padding:0 1vw;*/
    /*width: 9vw;*/

  }

  .header .nav li a.single, .header .nav li.lang a {
    font-size: 15px;
  }

  .footer .nav-box h3 {
    font-size: 16px;
  }

  .footer .nav-box .link a {
    font-size: 14px;
  }

  .footer .ewm-box {
    width: 120px;
  }
}
@media screen and (max-width: 1200px) {
  .header .logo .txt-box {
    display: none;
  }
  .header .nav li {
    padding:0 15px;
    width: 100%;
    text-align:left;
  }
  .header .nav li .second-nav li{
    padding:0 15px;
  }
  .header .nav{
    /*padding-right:50px;*/
  }
  .header .nav li.submenu:hover{
    background: url(../images/jia.png) right 15px no-repeat;
    background-size: 1%;
  }
  .hover-bg{
    background: none;
  }
  .header {
    height: 60px;
    /*background-color: #fff;*/
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1112;
  }
  .header .logo {
    left: 5vw;
    margin-top: -17px;
  }
  .header .logo img {
    height: 34px;
  }
  .header .logo img.show {
    opacity: 1;
  }
  .header .logo img.hide {
    opacity: 0;
  }
  .header.down .logo img.show{
    opacity:0;
  }
  .header.down .logo img.hide{
    opacity:1;
  }

  .header .nav {
    position: fixed;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100% - 60px);
    background: #F5F6F7;
    padding: 65px 15px 0;
    text-align: left;
    z-index: 3;
    -webkit-transition: left 0.3s linear;
    -moz-transition: left 0.3s linear;
    -ms-transition: left 0.3s linear;
    transition: left 0.3s linear;
    overflow-y: scroll;
  }
  .header .nav &gt;li {
    display: block;
    margin: 0;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #D8D8D8;
    background-size: 3%;
  }
  .header .nav &gt;li.submenu{
    background: url("../images/jia.png") right 15px no-repeat;
    background-size: 1%;

  }
  .header .nav &gt;li.submenu.open{
    background: url("../images/jian.png") right 20px no-repeat;
    background-size: 3%;
  }
  .header .nav&gt; li a.single,
  .header .nav&gt; li.lang a {
    display: inline-block;
    vertical-align: top;
    line-height: normal;
    color: #333;
    padding: 0;
    font-size: 14px;

  }
  .header.down .nav li a.single, .header.down .nav li.lang a,.header.hover .nav li a.single, .header.hover .nav li.lang a{
    line-height: normal;
  }
  .header .nav &gt;li.submenu.open &gt; a{
    color: #00457d;
  }
  .header .nav li a.single {
    color: #000;
  }
  .header .nav li a.single:after {
    display: none;
  }
  .header .nav li.submenu:hover .second-nav{
    background: none;
  }
  .second-nav{
    /*display: block;*/
    position: static;
    padding: 25px 0 0;
  }
  .second-nav a{
    font-size: 13px;
    display: block;
    border-bottom: 1px solid #D8D8D8;
    width: 100%;
    padding-bottom: 15px;
    text-align: left;
    height:auto;
    line-height: normal;
    margin: 16px 0 0;
  }
  .second-nav a:last-child{
    border: 0;
  }
  .header .nav li.lang a {
    color: #555555;
    background: url("../images/langhover.png") left center no-repeat;
    padding-left:25px;

  }
  .header .nav li.lang a:before {
    background-image: url("../images/icon-3-2.png");
  }
  .header .nav.active {
    left: 0;
  }
  .header .nav li.pchide{
    display: inline-block;
  }
  .header .nav li p{
    font-size: 14px;
    padding: 15px 0 0;
  }
  .header .nav li p a{
    background: url("../images/waptel.png") left center no-repeat;
    background-size: contain;
    padding-left: 20px;
    display: inline-block;

    margin-right: 20px;
  }
  .headeropen{
    background: #fff;
  }
  .header.headeropen .logo img.show {
    opacity: 0;
  }
  .header.headeropen .logo img.hide {
    opacity: 1;
  }
  .header .search {
    width: 60px;
    height: 60px;
    background-color: #00457d;
    display: none;
  }
  .fixed-search form{
    position: absolute;
    visibility: visible;
    margin:0;
    opacity: 0;
    left: 100%;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    z-index: 11111;
    background: #F5F6F7;
    padding:0;
    top:75px;
    -webkit-transition: left 0.3s linear;
    -moz-transition: left 0.3s linear;
    -ms-transition: left 0.3s linear;
    transition: left 0.3s linear;
  }
  .fixed-search form input{
    height:35px;
    background: none;
  }
  .fixed-search form .close{
    display: none;
  }
  .fixed-search form button{
    right: 0;
    left: auto;
    height:35px;
    background: url("../images/wapsearch.png") center center no-repeat;
    background-size: 25%;
    height: 35px;
    top:0;
  }
  .header.headeropen .fixed-search form{
    opacity:1;
    left:15px;
    right: 15px;
  }
  .mNavBtn {
    display: block;
    width: 24px;
    height: 16px;
    right: 15px;
    top: 22px;
    position: fixed;
    cursor: pointer;
    z-index: 4;
  }
  .mNavBtn.active {
    right: 20px;
  }
  .mNavBtn.active .line2 {
    display: none;
  }
  .mNavBtn.active .line1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
    background: #333;
  }
  .mNavBtn.active .line3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 7px;
    background: #333;
  }
  .mNavBtn span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .mNavBtn span.line1 {
    top: 0;
  }
  .mNavBtn span.line2 {
    top: 7px;
  }
  .mNavBtn span.line3 {
    bottom: 0;
  }
  .header.down .mNavBtn span{
    background: #333;
  }
  .footer .top-block {
    display: block;
  }

  .footer .logo img {
    margin: 0 auto;
  }

  .footer .share-box,
  .footer .nav-box,
  .footer .ewm-box {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .hover-bg{
    background: none;
  }
  .header {
    height: 60px;
    /*background-color: #fff;*/
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1112;
  }
  .header .logo {
    left: 5vw;
    margin-top: -17px;
  }
  .header .logo img {
    height: 34px;
  }
  .header .logo img.show {
    opacity: 1;
  }
  .header .logo img.hide {
    opacity: 0;
  }
  .header.down .logo img.show{
    opacity:0;
  }
  .header.down .logo img.hide{
    opacity:1;
  }

  .header .nav {
    position: fixed;
    top: 60px;
    left: 100%;
    width: 100%;
    height: calc(100% - 60px);
    background: #F5F6F7;
    padding: 65px 15px 0;
    text-align: left;
    z-index: 3;
    -webkit-transition: left 0.3s linear;
    -moz-transition: left 0.3s linear;
    -ms-transition: left 0.3s linear;
    transition: left 0.3s linear;
    overflow-y: scroll;
  }
  .header .nav &gt;li {
    display: block;
    margin: 0;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #D8D8D8;
    background-size: 3%;
  }
  .header .nav li.submenu:hover{
    background: url(../images/jia.png) right 15px no-repeat;
    background-size: 3%;
  }
  .header .nav &gt;li.submenu{
    background: url("../images/jia.png") right 15px no-repeat;
    background-size: 3%;

  }
  .header .nav &gt;li.submenu.open{
    background: url("../images/jian.png") right 20px no-repeat;
    background-size: 3%;
  }
  .header .nav&gt; li a.single,
  .header .nav&gt; li.lang a {
    display: inline-block;
    vertical-align: top;
    line-height: normal;
    color: #333;
    padding: 0;
    font-size: 14px;

  }
  .header.down .nav li a.single, .header.down .nav li.lang a{
    line-height: normal;
  }
  .header .nav &gt;li.submenu.open &gt; a{
    color: #00457d;
  }
  .header .nav li a.single {
    color: #000;
  }
  .header .nav li a.single:after {
    display: none;
  }

  .second-nav{
    /*display: block;*/
    position: static;
    padding: 25px 0 0;
  }
  .second-nav a{
    font-size: 13px;
    display: block;
    border-bottom: 1px solid #D8D8D8;
    width: 100%;
    padding-bottom: 15px;
  }
  .second-nav a:last-child{
    border: 0;
  }
  .header .nav li.lang a {
    color: #555555;
    background: url("../images/langhover.png") left center no-repeat;
    padding-left:25px;

  }
  .header .nav li.lang a:before {
    background-image: url("../images/icon-3-2.png");
  }
  .header .nav.active {
    left: 0;
  }
  .header .nav li.pchide{
    display: inline-block;
  }
  .header .nav li p{
    font-size: 14px;
    padding: 15px 0 0;
  }
  .header .nav li p a{
    background: url("../images/waptel.png") left center no-repeat;
    background-size: contain;
    padding-left: 20px;
    display: inline-block;

    margin-right: 20px;
  }
  .headeropen{
    background: #fff;
  }
  .header.headeropen .logo img.show {
    opacity: 0;
  }
  .header.headeropen .logo img.hide {
    opacity: 1;
  }
  .header .search {
    width: 60px;
    height: 60px;
    background-color: #00457d;
    display: none;
  }
  .fixed-search form{
    position: absolute;
    visibility: visible;
    margin:0;
    opacity: 0;
    left: 100%;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    z-index: 11111;
    background: #F5F6F7;
    padding:0;
    top:75px;
    -webkit-transition: left 0.3s linear;
    -moz-transition: left 0.3s linear;
    -ms-transition: left 0.3s linear;
    transition: left 0.3s linear;
  }
  .fixed-search form input{
    height:35px;
    background: none;
  }
  .fixed-search form .close{
    display: none;
  }
  .fixed-search form button{
    right: 0;
    left: auto;
    height:35px;
    background: url("../images/wapsearch.png") center center no-repeat;
    background-size: 25%;
    height: 35px;
    top:0;
  }
  .header.headeropen .fixed-search form{
    opacity:1;
    left:15px;
    right: 15px;
  }
  .mNavBtn {
    display: block;
    width: 24px;
    height: 16px;
    right: 15px;
    top: 22px;
    position: fixed;
    cursor: pointer;
    z-index: 4;
  }
  .mNavBtn.active {
    right: 20px;
  }
  .mNavBtn.active .line2 {
    display: none;
  }
  .mNavBtn.active .line1 {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
    background: #333;
  }
  .mNavBtn.active .line3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 7px;
    background: #333;
  }
  .mNavBtn span {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .mNavBtn span.line1 {
    top: 0;
  }
  .mNavBtn span.line2 {
    top: 7px;
  }
  .mNavBtn span.line3 {
    bottom: 0;
  }
  .header.down .mNavBtn span{
    background: #333;
  }
  .footer .top-block {
    display: block;
  }

  .footer .logo img {
    margin: 0 auto;
  }

  .footer .share-box,
  .footer .nav-box,
  .footer .ewm-box {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: 100%;
  }

  .footer {
    padding: 0 5vw;
  }

  .footer .top-block {
    display: none;
  }

  .footer .bot-block {
    padding: 15px 0;
  }

  .footer .bot-block .link {
    position: static;
    text-align: center;
    margin-bottom: 15px;
  }

  .footer .ship {
    display: none;
  }

  .footer .copyright {
    line-height: 20px;
    text-align: center;
  }
  .footer .copyright a{
    display: block;
  }
  .rightfloat{
    display: none;
  }
}
/* common */
.index-tit {
  letter-spacing: 2px;
}
.index-tit .en {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.index-tit .en:before {
  content: '';
  width: 21px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-1.png");
  display: inline-block;
  vertical-align: middle;
  margin: -2px 10px 0 0;
}
.index-tit h3 {
  font-size: 42px;
  line-height:42px;
}
.index-tit p {
  font-size: 18px;
  line-height: 30px;
  margin-top: 20px;
}
.index-tit.gray .en {
  color: #000;
}
.index-tit.gray h3 {
  color: #333;
}
.index-tit.gray h3 a{
  float: right;
  font-size: 14px;
  color: #666666;
}
.index-tit.gray p {
  color: #333333;
}
.index-tit.white .en {
  color: #fff;
}
.index-tit.white h3 a{
  color: #fff;
}
.index-tit.white p {
  color: #fff;
}
.index-tit.center h3 {
  text-align: center;
}
.index-tit.center h3 a{
  color: #fff;
}
.index-tit.center p {
  text-align: center;
}

a.index-more {
  display: block;
  width: 140px;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  text-align: center;
  background-color: #00457d;
  transition: all .3s ease;
}
@media screen and (min-width: 1200px) {
  a.index-more:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 104, 133, 0.3);
  }
}



.index-main .section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.index-s1 {
  background-color: #000;
}
.index-s1 video{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index:1;
}
.video-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.index-s1 .item {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.index-s1 .item.swiper-slide-active h3, .index-s1 .item.swiper-slide-active p, .index-s1 .item.swiper-slide-active .btn {
  opacity: 1;
  transform: translateY(0);
}
.index-s1 .item.swiper-slide-active h3 {
  transition-delay: .8s;
}
.index-s1 .item.swiper-slide-active p {
  transition-delay: 1s;
}
.index-s1 .item.swiper-slide-active .btn {
  transition-delay: 1.2s;
}
.index-s1 .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: o-scale 20s linear infinite;
  z-index: 1;
}
.index-s1 .txt-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.index-s1 h3, .index-s1 p, .index-s1 .btn {
  opacity: 0;
  transform: translateY(2vw);
  transition: all .6s ease;
}
.index-s1 h3 {
  font-size: 56px;
  color: #fff;
  letter-spacing: 2px;
}
.index-s1 p {
  font-size: 20px;
  line-height: 2;
  color: #fff;
  letter-spacing: 2px;
  max-width: 660px;
  margin: 20px 0;
}
.index-s1 .button {
  width: 17px;
  height: 29px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/prev-1.png");
  position: absolute;
  top: 50%;
  margin-top: -15px;
  opacity: .5;
  transition: opacity .3s ease;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .index-main .section {
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .index-main .section{
    height:auto;
  }
  .index-s1 .button:hover {
    opacity: 1;
  }
}
.index-s1 .button-prev {
  left: 5vw;
}
.index-s1 .button-next {
  right: 5vw;
  transform: rotate(180deg);
}
.index-s1 .pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.5vw;
  text-align: center;
  font-size: 0;
  z-index: 2;
}
.index-s1 .pagination .num {
  display: inline-block;
  vertical-align: top;
  width: 190px;
  position: relative;
  margin-left: -1px;
  opacity: .5;
}
.index-s1 .pagination .num span {
  display: block;
  text-align: center;
  padding-bottom: 10px;
  font-size: 14px;
  font-family: 'DINPro-Regular';
  color: #fff;
  transition: color .3s ease;
}
.index-s1 .pagination .num svg {
  display: block;
  width: 100%;
  height: auto;
}
.index-s1 .pagination .num .line-1 {
  stroke: #fff;
}
.index-s1 .pagination .num .line-2 {
  stroke: #00457d;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
}
.index-s1 .pagination .num.active {
  opacity: 1;
  z-index: 2;
}
.index-s1 .pagination .num.active span {
  color: #00457d;
}
.index-s1 .pagination .num.active .line-2 {
  stroke-dashoffset: 0;
  transition: all 2s ease;
}
.index-s1 .scroll {
  position: absolute;
  left: 5vw;
  bottom: 0;
  opacity: .5;
  z-index: 2;
}
.index-s1 .scroll span {
  display: block;
  font-size: 14px;
  color: #fff;
  transform-origin: bottom left;
  transform: rotate(-90deg) translateY(26px);
}
.index-s1 .scroll i {
  display: block;
  width: 1px;
  height: 60px;
  margin: 10px auto 0;
  position: relative;
  overflow: hidden;
}
.index-s1 .scroll i:before {
  content: '';
  width: 1px;
  height: 60px;
  background-color: #fff;
  display: block;
  animation: o-scroll 1.5s linear infinite;
}

.index-s2 {
  position: relative;
  overflow: hidden;
}
.index-s2:before {
  content: '';
  width: 30vw;
  height: 35.5vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/img-9.png");
  position: absolute;
  top: 7vw;
  right: -3vw;
  /*opacity: .015;*/
  z-index: 1;
}

.index-s2 .left-box {
  width: 45%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border-radius: 10px 10px 0 10px;
  overflow: hidden;
}
.index-s2 .left-box img {
  display: block;
  width: 100%;
  /*animation: o-scale 20s linear infinite;*/
}
.index-s2 .left-box a {
  width: 78px;
  height: 78px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(201, 23, 29, 0.5);
  transition: all .3s ease;
}
.index-s2 .left-box a:before, .index-s2 .left-box a:after {
  content: '';
  width: 34px;
  height: 34px;
  opacity: .5;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -17px 0 0 -17px;
  transition: all .3s ease;
}
.index-s2 .left-box a:before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/icon-2.png");
}
.index-s2 .left-box a:after {
  border: 1px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(1.5);
}
@media screen and (max-width: 1200px) {
  .index-s2 .cont-box {
    margin: 5vw 0;
  }
}
@media screen and (min-width: 1200px) {
  .index-s2 .left-box a:hover {
    background-color: #00457d;
  }
  .index-s2 .left-box a:hover:before {
    opacity: 1;
  }
  .index-s2 .left-box a:hover:after {
    transform: scale(1);
    opacity: 1;
  }
}
.index-s2 .right-box {
  width: 55%;
  display: inline-block;
  vertical-align: middle;
  padding-left: 6.25vw;
}
.index-s2 a.index-more {
  margin-top: 2vw;
}
.index-s2 .datas {
  margin-top: 4vw;
  font-size: 0;
}
.index-s2 .data {
  display: inline-block;
  vertical-align: top;
  margin-right: 5vw;
  position: relative;
}
.index-s2 .data:last-of-type {
  margin-right: 0;
}
.index-s2 .data:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/img-7.gif");
  filter: grayscale(100%);
  opacity: 0;
  transition: all .3s ease;
}
.index-s2 .data .num {
  font-size: 16px;
  color: #00457d;
}
.index-s2 .data .num span {
  display: inline-block;
  font-size: 42px;
  line-height: 1;
  font-family: 'DINPro-Medium';
  transform: translateY(3px);
  margin-right: 5px;
}
.index-s2 .data p {
  font-size: 16px;
  color: #555555;
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .index-s2 .data:hover:before {
    opacity: .5;
  }
}
@media screen and (min-width: 1200px) {

  .index-s2 .left-box, .index-s2 .index-tit, .index-s2 .btn, .index-s2 .datas{
    opacity: 0;
    transform: translateY(2vw);
    transition: all .6s ease;
  }
  .index-s2.active .left-box, .index-s2.active .index-tit, .index-s2.active .btn, .index-s2.active .datas{
    opacity: 1;
    transform: translateY(0);
  }
  .index-s2.active .left-box {
    transition-delay: .5s;
  }
  .index-s2.active .index-tit {
    transition-delay: .7s;
  }
  .index-s2.active .btn {
    transition-delay: .9s;
  }
  .index-s2.active .datas {
    transition-delay: 1.1s;
  }

}


.index-s3 .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.index-s3 .bg-box .bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/djdtbg.png");
  animation: o-scale 20s linear infinite;
}
.index-s3 .cont-box {
  height: 100%;
  padding-top: 70px;
  position: relative;
  z-index: 2;
}
.index-s3 .index-tit .en:before{
  background-image: url('../images/icon-1-blue.png');
}
.index-s3 .mid-block {
  margin-top: 3.5vw;
  font-size: 0;
  display: flex;
  justify-content: space-between;
}
.index-s3 .mid-block .item {
  width: calc((100% - 60px) / 2);
}

.index-s3 .mid-block .item &gt; a{
  padding-bottom: 30px;
  display: block;
  margin-bottom: 30px;
  border-bottom:1px solid #D8D8D8;
}
.index-s3 .mid-block .item a:nth-child(2){
  border-bottom: 0;
}
.index-s3 .mid-block .item .img-box {
  overflow: hidden;
}
.index-s3 .mid-block .item .img-box a{
  display: block;
  position: relative;
}

.index-s3 .mid-block .item .img-box span{
  position: absolute;
  left:0;
  bottom: 0;
  font-size: 20px;
  color: #FFFFFF;
  width: 100%;
  height:140px;
  padding:90px 30px 0;
  line-height: 28px;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.00) 0%, rgba(0,0,0,0.70) 100%);
  text-overflow:ellipsis; white-space:nowrap; overflow:hidden;
}
/*.index-s3 .mid-block .item .img-box span:after{*/
  /*content: '';*/
  /*display: block;*/
  /*height:2px;*/
  /*width: 40px;*/
  /*background: #fff;*/
  /*margin-top: 15px;*/
/*}*/
.index-s3.mid-block .item .txt-box {
  margin-top: 20px;
}
.index-s3 .mid-block .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
  object-fit: cover;
}
.index-s3 .mid-block .item h3 {
  font-size: 20px;
  line-height:32px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.index-s3 .mid-block .item .date {
  font-size: 16px;
  color: #999999;
  font-family: 'DINPro-Regular';
  margin-bottom: 13px;

}
.index-s3 .mid-block .firstitem .date{
  display: none;
}
.index-s3 .mid-block .item p{
  display: block;
  font-size: 16px;
  color: #666666;
  line-height: 32px;
  text-align: justify;
  margin-top: 10px;
}

.index-s3 .bot-block {
  margin-top: 2vw;
  padding-top: 2vw;
  font-size: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
}
.index-s3 .bot-block .item {
  width: calc((100% - 60px)  / 3);
  border-right:1px solid #D8D8D8;
  padding-right: 30px;
  text-justify: auto;
}
.index-s3 .bot-block .item:last-child{
  border:none;
}
.index-s3 .bot-block .item .img-box {
  display: inline-block;
  vertical-align: middle;
  width: 32%;
  max-width: 106px;
  overflow: hidden;
}
.index-s3 .bot-block .item .txt-box {
  display: inline-block;
  vertical-align: middle;
  width: 100%;

}
.index-s3 .bot-block .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
}
.index-s3 .bot-block .item h3 {
  font-size: 20px;
  line-height: 36px;
  color: #333333;
  height: 72px;
  overflow: hidden;
  transition: color .3s ease;
}
.index-s3 .bot-block .item .date {
  font-size: 16px;
  color: #999999;
  font-family: 'DINPro-Regular';
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .index-s3 .bot-block {
    margin-bottom: 5vw;
  }
}
  @media screen and (min-width: 1200px) {
  .index-s3 .mid-block .item:hover img {
    transform: scale(1.1);
  }
  .index-s3 .mid-block .item &gt; a:hover h3 {
    color: #00457d;
  }
}

@media screen and (min-width: 1200px) {
  .index-s3 .bot-block .item:hover img {
    transform: scale(1.1);
  }
  .index-s3 .bot-block .item &gt; a:hover h3 {
    color: #00457d;
  }
}
@media screen and (min-width: 1200px) {
  .index-s3 .index-tit, .index-s3 .mid-block, .index-s3 .bot-block {
    opacity: 0;
    transform: translateY(2vw);
    transition: all .6s ease;
  }
  .index-s3.ani .index-tit, .index-s3.ani .mid-block, .index-s3.ani .bot-block {
    opacity: 1;
    transform: translateY(0);
  }
  .index-s3.ani .mid-block {
    transition-delay: .2s;

  }
  .index-s3.ani .bot-block {
    transition-delay: .4s;
  }

}
@media screen and (max-width: 1200px){
  .index-s3.ani .mid-block {
    display: block;
  }
  .index-s3 .mid-block .item{
    width: 100%;
    margin-bottom: 30px;
  }
  .index-s3 .mid-block {
    transition-delay: .2s;
    display: block;
  }
  .index-s3 .mid-block .item{
    width: 100%;
    margin-bottom: 0px;
    display: block;

  }
  .index-s3 .mid-block .item .img-box span{
    position: static;
    color: #333;
    padding:0;
    display: block;
    margin-top: 15px;
    height:auto;
    font-size: 16px;
    background: none;
  }
  .index-s3 .mid-block .item .img-box span:after{
    display: none;
  }

  .index-s3 .mid-block .item h3{
    font-size: 16px;
  }
  .index-s3 .mid-block .item p{
    font-size: 15px;
    margin-top: 0;
  }
  .index-s3 .mid-block .item &gt; a{
    box-shadow: 2px 2px 5px #efefef, -2px -2px 5px #efefef;
    padding:15px;
    background: #fff;
  }
  .index-s3 .mid-block .firstitem .date{
    display: block;
  }
}



.index-s4 .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #000;
  overflow: hidden;
}
.index-s4 .bg-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.index-s4 .bg-box .item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all .6s ease;
  animation: o-scale 20s linear infinite;
  z-index: 1;
}
.index-s4 .bg-box .item.active {
  opacity: 1;
}
.index-s4 .cont-box {
  height: 100%;
  padding-top: 70px;
  position: relative;
  z-index: 2;
}
.index-s4 .cont-box .items {
  margin-top: 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index-s4 .cont-box .item {
  width: calc((100% - 7vw) / 6);
  position: relative;
}
.index-s4 .cont-box .item i {
  display: block;
  width: 100px;
  height: 62px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.index-s4 .cont-box .item h3 {
  font-size: 20px;
  margin-top: 15px;
  text-align: center;
}
.index-s4 .cont-box .item p {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-top: 20px;
}
.index-s4 .cont-box .item .show {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  padding: 3vw 1.5vw;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 0 1.5vw 0 0;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s4 .cont-box .item .show h3 {
  color: #333333;
}
.index-s4 .cont-box .item .hide {
  background-color: #00457d;
  background-position: 130% -50%;
  border-radius: 0 1.5vw 0 1.5vw;
  background-repeat: no-repeat;
  /*background-image: url("../images/img-5.png");*/
  padding: 2vw 1.5vw;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  transition: all .3s ease;
}
.index-s4 .cont-box .item .hide h3{
  color: #fff;
}
.index-s4 .cont-box .item:nth-of-type(1) .show i {
  background-image: url("../images/icon-1-1.png");
}
.index-s4 .cont-box .item:nth-of-type(1) .hide i {
  background-image: url("../images/icon-1-1-on.png");
}
.index-s4 .cont-box .item:nth-of-type(2) .show i {
  background-image: url("../images/icon-1-2.png");
}
.index-s4 .cont-box .item:nth-of-type(2) .hide i {
  background-image: url("../images/icon-1-2-on.png");
}
.index-s4 .cont-box .item:nth-of-type(3) .show i {
  background-image: url("../images/icon-1-3.png");
}
.index-s4 .cont-box .item:nth-of-type(3) .hide i {
  background-image: url("../images/icon-1-3-on.png");
}
.index-s4 .cont-box .item:nth-of-type(4) .show i {
  background-image: url("../images/icon-1-4.png");
}
.index-s4 .cont-box .item:nth-of-type(4) .hide i {
  background-image: url("../images/icon-1-4-on.png");
}
.index-s4 .cont-box .item:nth-of-type(5) .show i {
  background-image: url("../images/icon-1-5.png");
}
.index-s4 .cont-box .item:nth-of-type(5) .hide i {
  background-image: url("../images/icon-1-5-on.png");
}
.index-s4 .cont-box .item:nth-of-type(6) .show i {
  background-image: url("../images/icon-1-6.png");
}
.index-s4 .cont-box .item:nth-of-type(6) .hide i {
  background-image: url("../images/icon-1-6-on.png");
}
@media screen and (min-width: 1200px) {
  .index-s4 .cont-box .item.active .show {
    opacity: 0;
    visibility: hidden;
  }
  .index-s4 .cont-box .item.active .hide {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 1200px) {
  .index-s4 .index-tit, .index-s4 .cont-box .items {
    opacity: 0;
    transform: translateY(2vw);
    transition: all .6s ease;
  }
  .index-s4.active .index-tit, .index-s4.active .cont-box .items {
    opacity: 1;
    transform: translateY(0);
  }
  .index-s4.active .index-tit {
    transition-delay: .5s;
  }
  .index-s4.active .cont-box .items {
    transition-delay: .7s;
  }
}

.index-s5 .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.index-s5 .bg-box .bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/img-1.jpg");
  animation: o-scale 20s linear infinite;
}
.index-s5 .cont-box {
  height: 100%;
  padding-top: 70px;
  position: relative;
  z-index: 2;
}
.index-s5 .index-tit .en:before,.index-s2 .index-tit .en:before{
  background-image: url('../images/icon-1-blue.png');
}
.index-s5 .mid-block {
  margin-top: 3.5vw;
  font-size: 0;
  display: flex;
  justify-content: space-between;
}
.index-s5 .mid-block .item {
  width: calc((100% - 84px) / 3);
}
.index-s5 .mid-block .item .img-box {
  overflow: hidden;
}
.index-s5 .mid-block .item .txt-box {
  margin-top: 20px;
}
.index-s5 .mid-block .item img {
  display: block;
  width: 100%;
  height:241px;
  transition: transform .6s ease;
  object-fit: cover;
}
.index-s5 .mid-block .item h3 {
  font-size: 16px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.index-s5 .mid-block .item .date {
  font-size: 14px;
  color: #555555;
  font-family: 'DINPro-Regular';
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .index-s5 .mid-block .item:hover img {
    transform: scale(1.1);
  }
  .index-s5 .mid-block .item:hover h3 {
    color: #00457d;
  }
}
.index-s5 .bot-block {
  margin-top: 2vw;
  padding-top: 2vw;
  font-size: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
}
.index-s5 .bot-block .item {
  width: calc((100% - 6vw) / 4);
}
.index-s5 .bot-block .item .img-box {
  display: inline-block;
  vertical-align: middle;
  width: 32%;
  max-width: 106px;
  max-height:70px;
  overflow: hidden;
}
.index-s5 .bot-block .item .txt-box {
  display: inline-block;
  vertical-align: middle;
  width: 68%;
  padding-left: 15px;
}
.index-s5 .bot-block .item img {
  display: block;
  width: 100%;
  transition: transform .6s ease;
  object-fit: cover;
}
.index-s5 .bot-block .item h3 {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  height: 48px;
  overflow: hidden;
  transition: color .3s ease;
}
.index-s5 .bot-block .item .date {
  font-size: 14px;
  color: #555555;
  font-family: 'DINPro-Regular';
  margin-top: 10px;
}
@media screen and (min-width: 1200px) {
  .index-s5 .bot-block .item:hover img {
    transform: scale(1.1);
  }
  .index-s5 .bot-block .item:hover h3 {
    color: #00457d;
  }
}
@media screen and (min-width: 1200px) {
  .index-s5 .index-tit, .index-s5 .mid-block, .index-s5 .bot-block {
    opacity: 0;
    transform: translateY(2vw);
    transition: all .6s ease;
  }
  .index-s5.ani .index-tit, .index-s5.ani .mid-block, .index-s5.ani .bot-block {
    opacity: 1;
    transform: translateY(0);
  }
  .index-s5.ani .mid-block {
    transition-delay: .2s;
  }
  .index-s5.ani .bot-block {
    transition-delay: .4s;
  }
}

.index-s6 .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: #000;
  overflow: hidden;
}
.index-s6 .bg-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.index-s6 .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}
.index-s6 .bg-box .bg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/anlibg.jpg);
  animation: o-scale 20s linear infinite;
}
.index-s6 .cont-box {
  height: 100%;
  padding-top: 70px;
  position: relative;
  z-index: 2;
}

.index-s6.active .index-tit{
  margin-bottom: 5vw;
}
.index-s6 .cont-box .items {
  margin-top: 1vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.index-s6 .cont-box .item {
  width: calc((100% - 7vw) / 4);
  /*width: 20%;*/
  height:230px;
  /*margin-bottom: 40px;*/
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  -webkit-transition: .65s;
  transition: .65s;
  position: relative;
}
.index-s6 .cont-box .item a{
  display: block;
  position: relative;
  height: 316px;
  padding: 32px;
  background-size: cover;
  /*background-position: center top;*/
  background-position: 0;
  overflow: hidden;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  height:230px;
}
.index-s6 .cont-box .item .cover{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,.5)));
  background-image: linear-gradient(
          180deg
          ,transparent 0,rgba(0,0,0,.5));
  -webkit-transition: .65s;
  transition: .65s;
}
.index-s6 .cont-box .item .text{
  float: left;
  color: #fff;
  font-size: 16px;
  margin-top:140px;
  /*background: url("../images/anli-icon.png") 0 top no-repeat;*/
  padding:50px 0 0 0;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 164px;
  -webkit-transition: .65s;
  transition: .65s;

}
.index-s6 .cont-box .item .text span{
  display: block;
  text-overflow:ellipsis;
  white-space:nowrap;
  overflow:hidden;
}
.index-s6 .cont-box .item .text p {
  font-size: 14px;
  line-height: 22px;
  opacity: 0;
  -webkit-transition: .2s;
  transition: .2s;
  margin-top: 10px;
}
.index-s6 .cont-box .item:hover{
  width: 40% !important
}
.index-s6 .cont-box .item:hover .text{
  margin-top: 100px;
}
.index-s6 .cont-box .item:hover p {
  opacity: 1;
  -webkit-transition: .65s .1s;
  transition: .65s .1s
}

@media screen and (max-width: 1200px){
  .index-s6 .cont-box .item,.index-s6 .cont-box .item a{
    height:240px;
  }
}
@media screen and (min-width: 1200px) {
  .index-s6 .cont-box .item.active .show {
    opacity: 0;
    visibility: hidden;
  }
  .index-s6 .cont-box .item.active .hide {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (min-width: 1200px) {
  .index-s6 .index-tit, .index-s6 .cont-box .items {
    opacity: 0;
    transform: translateY(2vw);
    transition: all .6s ease;
    /*height:250px;*/
  }
  .index-s6.active .index-tit, .index-s6.active .cont-box .items {
    opacity: 1;
    transform: translateY(0);
  }
  .index-s6.active .index-tit {
    transition-delay: .5s;
  }
  .index-s6.active .cont-box .items {
    transition-delay: .7s;
  }
}
@media screen and (max-width: 1200px){

  .index-s6 .cont-box .item,.index-s6 .cont-box .item a{
    height:194px;
  }
  .index-s6 .cont-box .items:nth-child(1){
    display: none;
  }
  .index-s6 .cont-box .item .text{
    margin-top: 90px;
  }
}
@media screen and (max-width: 768px){

  .index-s6 .cont-box .items{
    display: block;
  }
  .index-s6 .cont-box .items:nth-child(1){
    display: none;
  }
  .index-s6 .cont-box .item{
    display: block;
    width: 100%;
    margin: 20px 0 0;
  }
}
/*# sourceMappingURL=bundle.css.map */


.rightfloat{
  position: fixed;
  bottom:100px;
  right: 0;
  width:70px;
  z-index: 999;
}
.rightfloat li{
  position: relative;
  height:70px;
  background: #008BF4;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  margin-bottom: 7px;
}
.rightfloat li:hover{
  background: #00457d;
  color: #fff;
}
.rightfloat li:last-child{
  border-bottom: 0;
}
.rightfloat li strong{
  display: block;

  padding-top:42px;
  font-weight: normal;
}
.rightfloat li div{
  position: absolute;
  top:-1px;
  right:80px;
  width: 326px;
  height:224px;
  background: #FFFFFF;
  border-radius: 4px;
  color: #333;
  display: none;
}
.rightfloat li div:after{
  content: '';
  position: absolute;
  right:-9px;
  top:10px;
  display: block;
  width: 0;
  height: 0;
  border-left: 9px solid #fff;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
}
.rightfloat li:hover div{
  display: block;
}
.rightfloat li.hottel strong{
  background: url("../images/flhottel.png") center 10px no-repeat;
}
.rightfloat li.hottel:hover div{
  top:0;
  height:224px;
}
.rightfloat li.hottel div{
  padding:10px;
}
.rightfloat li.hottel dt{
  font-size: 16px;
  text-align: center;
}
.rightfloat li.hottel p{
  opacity: 0.96;
  background-image: linear-gradient(180deg, #008BF4 0%, #0071C6 100%);
  border-radius: 4px;
  height:70px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  padding-top: 13px;
}
.rightfloat li.hottel p span{
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}
/*.rightfloat li.hottel:hover strong{*/
  /*background-image: url('../images/flhottelhover.png');*/
/*}*/
.rightfloat li.hottel div p{
  margin-top: 16px;
}
.rightfloat li.wechat strong{
  background: url("../images/wechat.png") center 10px no-repeat;
}
/*.rightfloat li.wechat:hover strong{*/
  /*background-image: url('../images/flhottelhover.png');*/
/*}*/
.rightfloat li.wechat div,.rightfloat li.qudao div{
  padding:17px 0;
}
.rightfloat li.wechat div dl,.rightfloat li.qudao div dl{
  overflow: hidden;
}
.rightfloat li.wechat div dt,.rightfloat li.qudao div dt{
  float: left;
  width: 90px;
  text-align: center;
  margin-left:14px;
}
.rightfloat li.wechat div dt img,.rightfloat li.qudao div dt img{
  width: 90px;
  height:90px;
}
.rightfloat li.wechat div dt span,.rightfloat li.qudao div dt span{
  display: block;
  margin-top: 10px;
  font-size: 14px;

}
.rightfloat li.wechat div p,.rightfloat li.qudao div p{
  height:63px;
  background: rgba(95,160,210,0.07);
  font-size: 14px;
  margin:10px 14px 0;
  line-height:63px;
  color: #333333;
}
.rightfloat li.qudao strong{
  background: url("../images/flqudao.png") center 10px no-repeat;
}
.rightfloat li.qudao div p{
  padding:10px;
  line-height: normal;
  text-align: left;
  line-height:20px;
}
.rightfloat li.qudao div p span{
  display: block;
  font-size: 18px;
  color: #00457d;
  margin-top: 5px;
}
.rightfloat li.liuyan a{
  background: url("../images/liuyan.png") center 10px no-repeat;
  display: block;
  padding-top: 42px;
  font-weight: normal;
  color: #fff;
}


.toTop {
  position: fixed;
  right: 3%;
  bottom: 15%;
  z-index: 99999;
  display: none;
}
</pre></body></html>